home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Graphics / Utility / ARTAbrot 1.1 / Enter_Coordinates.h < prev    next >
Text File  |  1993-08-23  |  1KB  |  36 lines

  1. /* Enter_Coordinates */
  2.  
  3. /* File name: Enter_Coordinat.h */
  4. /* Function: Handle a modeless dialog */
  5. /*            This dialog operates like a window, it is not modal. */
  6. /*           Opened by:     */
  7. /*           Closed by:      */
  8. /*          Purpose:       
  9. History: 8/18/93 Original by George Warner
  10.    */
  11.  
  12.  
  13.  
  14. /* ======================================================= */
  15. /* Initialize the flag for this dialog, for other routines to use */
  16. void Init_Enter_Coordinat(void);
  17.  
  18. /* We were moved on the screen, or to another screen. */
  19. void Moved_Enter_Coordinat(WindowPtr theWindow);
  20.  
  21. /* Update the display of this dialog, when an area is uncovered. */
  22. void Update_Enter_Coordinat(WindowPtr theWindow);
  23.  
  24. /* Open the dialog and display it on the screen. */
  25. void Open_Enter_Coordinat(void);
  26.  
  27. /* Handle any events for this dialog, when it is active. */
  28. void Do_Enter_Coordinat(EventRecord *theEvent, WindowPtr theWindow, short itemHit);
  29.  
  30. /* Close this dialog and release it from memory. */
  31. void Close_Enter_Coordinat(WindowPtr theWindow);
  32.  
  33. /* ======================================================= */
  34.  
  35.  
  36.